🎖️GitЯра🎖️
Node / meshtastic / Meshtastic-Android / files / feature / wifi-provision / src / commonMain / kotlin / org / meshtastic / feature / wifiprovision / model / WifiNetwork.kt
Displaying Raw • Download
feature/wifi-provision/src/commonMain/kotlin/org/meshtastic/feature/wifiprovision/model/WifiNetwork.kt renovate/actions-setup-java-5.x (f17e586c) Text, 1.45 KB
T8b949e/*
* Copyright (c) 2026 Meshtastic LLC
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU General Public License for more details.
*
* You should have received a copy of the GNU General Public License
* along with this program. If not, see <https://www.gnu.org/licenses/>.
*/
Tff7b72package T7ee787org.meshtastic.feature.wifiprovision.model
T8b949e/** A WiFi access point returned by the nymea GetNetworks command. */
Tff7b72data Tff7b72class T56d364WifiNetworkTb4b4b4(
T8b949e/** ESSID / network name. */
Tff7b72val Te6edf3ssidTb4b4b4: Tffa657StringTb4b4b4,
T8b949e/** MAC address of the access point. */
Tff7b72val Te6edf3bssidTb4b4b4: Tffa657StringTb4b4b4,
T8b949e/** Signal strength [0-100] %. */
Tff7b72val Te6edf3signalStrengthTb4b4b4: Tffa657IntTb4b4b4,
T8b949e/** Whether the network requires a password. */
Tff7b72val Te6edf3isProtectedTb4b4b4: Tffa657BooleanTb4b4b4,
Tb4b4b4)
T8b949e/** Result of a WiFi provisioning attempt. */
Tff7b72sealed Tff7b72interface T56d364ProvisionResult Tb4b4b4{
Tff7b72data Tff7b72class T56d364SuccessTb4b4b4(
T8b949e/** IPv4 address reported by nymea for the active Wi-Fi connection. */
Tff7b72val Te6edf3ipAddressTb4b4b4: Tffa657String? Tff7b72= Tff7b72nullTb4b4b4,
Tb4b4b4) Tb4b4b4: Te6edf3ProvisionResult
Tff7b72data Tff7b72class T56d364FailureTb4b4b4(Tff7b72val Te6edf3errorCodeTb4b4b4: Tffa657IntTb4b4b4, Tff7b72val Te6edf3messageTb4b4b4: Tffa657StringTb4b4b4) Tb4b4b4: Te6edf3ProvisionResult
Tb4b4b4}
Served by rngit 1.5.0 - Generated in 0.05s